Phase 1: Convert project files to SDK-style format and migrate to .NET 6#4
Open
devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
Open
Phase 1: Convert project files to SDK-style format and migrate to .NET 6#4devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
Conversation
- Convert all four .csproj files from old-style to SDK-style format - Update target framework from v4.5.1 to net6.0 - Migrate NuGet package references from packages.config to PackageReference format - Remove all packages.config files - Add compatibility packages for .NET Framework dependencies - Add GenerateAssemblyInfo=false to prevent duplicate assembly attributes - Add EnableDefaultContentItems=false for SampleWebApp to prevent duplicate content items Note: Build currently fails due to missing System.Web types (HttpApplication, RouteCollection) that require code changes beyond Phase 1 scope. These will be addressed in subsequent phases. Co-Authored-By: ben.lehrburger@windsurf.com <ben.lehrburger@windsurf.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Phase 1: Convert project files to SDK-style format and migrate to .NET 6
Summary
This PR implements Phase 1 of the .NET Framework 4.5.1 to .NET Core 6 migration by converting all project files to modern SDK-style format and migrating package management from packages.config to PackageReference format.
Key Changes:
v4.5.1tonet6.0across all projectsGenerateAssemblyInfo=false,EnableDefaultContentItems=false)System.Configuration.ConfigurationManager,Microsoft.Windows.Compatibility)Current Status:⚠️ The solution does not currently build - there are 4 compilation errors related to missing
System.Webtypes (HttpApplication,RouteCollection) that don't exist in .NET 6. This is expected for Phase 1 as code changes are planned for subsequent phases.Review & Testing Checklist for Human
Test Plan: Due to compilation failures, functional testing is not possible at this stage. The next phase should focus on resolving the System.Web dependency issues and updating code to use ASP.NET Core equivalents.
Notes
This is Phase 1 of a multi-phase migration plan. The project structure has been successfully modernized, but code changes will be required in Phase 2 to replace ASP.NET Framework-specific types with ASP.NET Core equivalents.
Link to Devin run: https://app.devin.ai/sessions/6bb3e4352c164fa4bacab472aa211b7b
Requested by: ben-windsurf (@ben-windsurf)